home *** CD-ROM | disk | FTP | other *** search
- on makeLowerCase pString
- set LowerString to EMPTY
- set offset to charToNum("a") - charToNum("A")
- set CharCount to the number of chars in pString
- repeat with index = 1 to CharCount
- set Letter to char index of pString
- if (charToNum(Letter) >= charToNum("A")) and (charToNum(Letter) <= charToNum("Z")) then
- set Letter to numToChar(charToNum(Letter) + offset)
- end if
- set LowerString to LowerString & Letter
- end repeat
- return LowerString
- end
-